body.elementor-page-10051:not(.elementor-motion-effects-element-type-background), body.elementor-page-10051 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#F3F3F3;}/* Start custom CSS *//* Tool & Plugin Partners Program Styling */
.kb-theme-partners-directory {
  font-family: 'Inter', sans-serif;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  color: #fff;
}

/* Hero Section with Blue Gradient */
.kb-hero-section {
  background: linear-gradient(135deg, #04142E 0%, #000f27 100%);
  border-radius: 16px;
  padding: 60px;
  margin-bottom: 60px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.kb-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: white
  border-radius: 50%;
  transform: translate(150px, -150px);
}

.kb-hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.elementor-kit-5 h3 {
    color: #171717;
    font-size: 32px;
    font-weight: 300;
    line-height: 42px;
}

/* Fix for search button icon display */
.kb-search-button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(45deg, #4F1AF3, #6D3EF7);
  border: none;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  overflow: hidden;
}

.kb-search-button svg {
  width: 16px;
  height: 16px;
  display: block;
}

.kb-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff !important;
}

.kb-subtitle {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #edf2ff;
}

.kb-hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 30px;
}

.kb-primary-button, 
.kb-cta-button {
  background: linear-gradient(45deg, #4F1AF3, #6D3EF7, #B399FF);
  background-size: 300% 300%;
  animation: gradientAnimation 5s ease-in-out infinite;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.kb-primary-button:hover,
.kb-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(79, 26, 243, 0.4);
}

.kb-secondary-button {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50px;
  padding: 12px 26px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.kb-secondary-button:hover {
  background: #fff;
  color: #3d4db7;
  transform: translateY(-2px);
}

/* Section headings */
.kb-section-title {
  font-size: 32px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
  text-align: center;
}

.kb-section-subtitle {
  font-size: 18px;
  color: #64748b;
  margin-bottom: 40px;
  text-align: center;
}

/* Partners Container */
.kb-partners-container {
  display: flex;
  gap: 30px;
  margin-bottom: 60px;
}

/* Filter Sidebar */
.kb-filter-sidebar {
  width: 280px;
  height: 400px;
  min-width: 280px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 20px;
  color: #1e293b;
}

.kb-search-box {
  position: relative;
  margin-bottom: 20px;
}

.kb-search-input {
  width: 100%;
  padding: 12px 40px 12px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 50px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.kb-search-input:focus {
  outline: none;
  border-color: #4F1AF3;
  box-shadow: 0 0 5px rgba(79, 26, 243, 0.2);
}

.kb-search-button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(45deg, #4F1AF3, #6D3EF7);
  border: none;
  color: #fff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.kb-filter-title {
  font-size: 18px;
  font-weight: 600;
  color: #1e293b;
  padding-bottom: 15px;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 20px;
}

.kb-filter-category {
  margin-bottom: 15px;
}

.kb-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 8px 0;
  transition: all 0.2s ease;
}

.kb-category-header:hover {
  color: #4F1AF3;
}

.kb-category-name {
  font-size: 15px;
  font-weight: 500;
  color: #1e293b;
}

.kb-toggle-icon {
  font-size: 18px;
  color: #64748b;
  transition: transform 0.2s ease;
}

.kb-category-items {
  padding-left: 10px;
  margin-top: 8px;
  display: none;
}

.kb-filter-category.active .kb-category-items {
  display: block;
}

.kb-filter-category.active .kb-toggle-icon {
  transform: rotate(180deg);
}

.kb-filter-item {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  cursor: pointer;
}

.kb-filter-item input[type="checkbox"] {
  display: none;
}

.kb-checkbox {
  width: 18px;
  height: 18px;
  border: 2px solid #cbd5e1;
  border-radius: 4px;
  display: inline-block;
  position: relative;
  margin-right: 8px;
  transition: all 0.2s ease;
}

.kb-filter-item input[type="checkbox"]:checked + .kb-checkbox {
  background: #4F1AF3;
  border-color: #4F1AF3;
}

.kb-filter-item input[type="checkbox"]:checked + .kb-checkbox:after {
  content: "";
  position: absolute;
  top: 3px;
  left: 6px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.kb-item-label {
  font-size: 14px;
  color: #64748b;
  transition: color 0.2s ease;
}

.kb-filter-item:hover .kb-item-label {
  color: #4F1AF3;
}

/* Partners Grid */
.kb-partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  flex: 1;
}

.kb-partner-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  color: #1e293b;
}

.kb-partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.kb-card-header {
  text-align: center;
  margin-bottom: 16px;
}

.kb-partner-logo {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.kb-partner-logo img {
  max-height: 80px;
  max-width: 100%;
  object-fit: contain;
}

.kb-partner-name {
  font-size: 20px;
  font-weight: 600;
  color: #1e293b;
}

.kb-card-body {
  flex: 1;
}

.kb-partner-description {
  font-size: 14px;
  line-height: 1.6;
  color: #64748b;
  margin-bottom: 16px;
}

.kb-card-footer {
  margin-top: auto;
  text-align: center;
}

.kb-read-more {
  background: linear-gradient(45deg, #4F1AF3, #6D3EF7);
  color: #fff;
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.kb-read-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(79, 26, 243, 0.3);
}

/* No results message */
.kb-no-results {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  color: #64748b;
  width: 100%;
  font-size: 18px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Pagination */
.kb-pagination {
  margin: 40px 0 60px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.kb-pagination ul {
  display: inline-flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 5px;
  
}

.kb-pagination li {
  margin: 0;
}

.kb-pagination a,
.kb-pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  padding: 0 15px;
}

.kb-pagination a {
  background: #fff;
  color: #1e293b;
  padding: 10px;
  width: auto;
  margin-top: 5px;
  

 }

.kb-pagination a:hover {
  background: #f1f5f9
  color: black;
  transform: translateY(-2px);
}

.kb-pagination span.current {
  background: linear-gradient(45deg, #4F1AF3, #6D3EF7);
  color: #fff;
  width: auto;
    justify-content: center;
  
}

/* Join CTA Section */
.kb-join-cta {
  background: #000f27;
  border-radius: 16px;
  padding: 60px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  margin-top: 60px;
}

.kb-join-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%234F1AF3' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.5;
}

.kb-cta-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

.kb-cta-description {
  font-size: 18px;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 30px;
  color: #cbd5e1;
  position: relative;
}

/* Keyframes for gradient animation */
@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .kb-partners-container {
    flex-direction: column;
  }
  
  .kb-filter-sidebar {
    width: 100%;
    min-width: 100%;
  }
  
  .kb-partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .kb-hero-section {
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .kb-hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .kb-join-cta {
    padding: 40px 20px;
  }
}

@media (max-width: 576px) {
  .kb-partners-grid {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */